#!/bin/sh
#Script que da información sobre los archivos de imágenes.
cierralanzador
file="$1"

if [ -z "$1" ];then
	file=`zenity --file-selection --title="MSG1"`
		if [ -z "$file" ];then
			exit 0
			
		fi
fi


mediainfo "$file"|zenity --text-info --width 500 --height 400